std::list::reverse
From Cppreference
| void reverse();
| ||
Reverses the order of the elements in the container. No references or iterators become invalidated.
Contents |
Parameters
(none)
Return value
(none)
Example
| This section is incomplete |
Complexity
linear in the size of the container
See also
| sorts the elements (public member function) | |